home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / debianutils.postinst < prev    next >
Text File  |  2008-11-04  |  383b  |  25 lines

  1. #! /bin/sh -e
  2.  
  3. if test -z "$2" && test ! -f /etc/shells
  4. then
  5.         cp -p /usr/share/debianutils/shells /etc/shells
  6. fi
  7.  
  8. case "$1" in
  9.     configure)
  10.     if which update-mime >/dev/null;
  11.     then
  12.         update-mime
  13.     fi
  14.     ;;
  15.  
  16.     abort-upgrade|abort-remove|abort-deconfigure)
  17.  
  18.     ;;
  19.  
  20.     *)
  21.         echo "postinst called with unknown argument \`$1'" >&2
  22.         exit 1
  23.     ;;
  24. esac
  25.